Function UPSAMPLE

Package

utils

Short description

Upsamples a signal using cubic spline interpolation

Usage

    y = upsample(x, N)

Input

    x (numeric): The signal to be upsampled.
    N (numeric): The number of points in the upsampled signal.

Output

    y (numeric): The upsampled signal.

Description

    The input signal x is interpolated using cubic splines through the 
    INTERP1 function with symmetric boundary conditions.

See also

List of all packages